home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Neurons / gen-seq < prev    next >
Text File  |  1998-10-23  |  621b  |  21 lines

  1. gen-seq seq-name length
  2.  
  3. Use gen-seq to generate a list of multiple values froma seq. If you have a longer sequence gen-seq allows you to access easily first the 8 components, then the next 8 and so on.
  4.  
  5. (seq :melody '(f g g c -c f b c b b a a a -b a -c b e -b -e 
  6.                -d c b -b -d -b c b c a b c))
  7.  
  8. (gen-seq :melody 8)
  9. --> (f g g c -c f b c)
  10. (gen-seq :melody 8)
  11. --> (b b a a a -b a -c)
  12. (gen-seq :melody 8)
  13. --> (b e -b -e -d c b -b)
  14. (gen-seq :melody 8)
  15. --> (-d -b c b c a b c)
  16.  
  17. (gen-seq :melody 8)
  18. --> (f g g c -c f b c) ..etc
  19.  
  20. NOTE: Use (seq :melody :reset) to reset the sequence to start from the beginning.
  21.